home *** CD-ROM | disk | FTP | other *** search
/ Freelog 121 / FreelogMagazineJuilletAout2014-No121.iso / Outils / Adobe-Air / adobe-air_13.exe / [0] / setup.swf / scripts / mx / automation / IAutomationObject.as
Text File  |  2014-03-27  |  1KB  |  36 lines

  1. package mx.automation
  2. {
  3.    import flash.events.Event;
  4.    
  5.    public interface IAutomationObject
  6.    {
  7.        
  8.       
  9.       function createAutomationIDPart(param1:IAutomationObject) : Object;
  10.       
  11.       function get automationName() : String;
  12.       
  13.       function get showInAutomationHierarchy() : Boolean;
  14.       
  15.       function set automationName(param1:String) : void;
  16.       
  17.       function getAutomationChildAt(param1:int) : IAutomationObject;
  18.       
  19.       function get automationDelegate() : Object;
  20.       
  21.       function get automationTabularData() : Object;
  22.       
  23.       function resolveAutomationIDPart(param1:Object) : Array;
  24.       
  25.       function replayAutomatableEvent(param1:Event) : Boolean;
  26.       
  27.       function set automationDelegate(param1:Object) : void;
  28.       
  29.       function get automationValue() : Array;
  30.       
  31.       function get numAutomationChildren() : int;
  32.       
  33.       function set showInAutomationHierarchy(param1:Boolean) : void;
  34.    }
  35. }
  36.